home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / Construc / Client51.dpr < prev    next >
Encoding:
Text File  |  1999-09-27  |  254 b   |  15 lines

  1. program Client51;
  2. {$APPTYPE CONSOLE}
  3. uses
  4.   WebBroker,
  5.   CGIApp,
  6.   WebMod51 in 'WebMod51.pas' {WebModule2: TWebModule};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TWebModule2, WebModule2);
  13.   Application.Run;
  14. end.
  15.